home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / ip / manage / snmp / mit / doc / snmpd.tex < prev    next >
Encoding:
Text File  |  1991-05-17  |  1.5 KB  |  45 lines

  1. %
  2. %    $Header: snmpd.tex,v 3.0 91/05/17 16:16:08 jrd Rel $
  3. %    Author: J. Davin
  4. %    Copyright 1988, 1989, Massachusetts Institute of Technology
  5. %
  6.  
  7. \newpage
  8. \subsection{The Snmpd Command}
  9.  
  10. The snmpd command realizes the function of a network
  11. management agent in a BSD 4.3 UNIX environment. The
  12. code for the snmpd command illustrates the use of the
  13. Development Kit facilities to accelerate development
  14. of an agent that can service network management requests.
  15. The set of management information supported by this code
  16. does not fully conform to RFC 1066, and, accordingly, this
  17. application should not be deployed for any but experimental
  18. purposes.
  19.  
  20. Sources for the snmpd command reside in the
  21. \verb"snmpd" subdirectory of the Development Kit
  22. distribution hierarchy.
  23.  
  24. The snmpd command is invoked with the syntax:
  25.  
  26. {\bf snmpd} [{\bf -h} {\it localHost}] [{\bf -p} {\it localPort}]
  27. [{\bf -c} {\it communityName}]
  28.  
  29. If the {\bf -h} flag is present, then the daemon
  30. will attempt to listen for management requests
  31. at the IP address specified as {\it localHost,}
  32. instead of merely binding to the wildcard address.
  33.  
  34. If the {\bf -p} flag is present, then the daemon
  35. will attempt to listen for management requests
  36. at the UDP port specified as {\it localPort,}
  37. instead of that assigned to the ``snmp'' service
  38. in the \verb"/etc/services" database.
  39.  
  40. If the {\bf -c} flag is present, then the daemon
  41. will accept management requests
  42. associated with the community name specified as {\it communityName,}
  43. instead of using the community name ``public.''
  44.  
  45.